gtk: Add test program for keycode parsing
authorBastien Nocera <hadess@hadess.net>
Thu, 3 Nov 2011 18:53:19 +0000 (18:53 +0000)
committerBastien Nocera <hadess@hadess.net>
Fri, 4 Nov 2011 16:40:22 +0000 (16:40 +0000)
https://bugzilla.gnome.org/show_bug.cgi?id=662755

gtk/tests/Makefile.am
gtk/tests/accel.c [new file with mode: 0644]

index be0847a64f902147a362323d84152a2a85e3ef8c..f71e346f0ef8ce4ac9ba78b725f5319fee6a96b0 100644 (file)
@@ -54,6 +54,10 @@ TEST_PROGS                   += floating
 floating_SOURCES                = floating.c
 floating_LDADD                  = $(progs_ldadd)
 
+TEST_PROGS                     += accel
+accel_SOURCES                   = accel.c
+accel_LDADD                     = $(progs_ldadd)
+
 #TEST_PROGS                    += object
 #object_SOURCES                         = object.c pixbuf-init.c
 #object_LDADD                   = $(progs_ldadd)
diff --git a/gtk/tests/accel.c b/gtk/tests/accel.c
new file mode 100644 (file)
index 0000000..43e1425
--- /dev/null
@@ -0,0 +1,73 @@
+/* accel.c - test accel parsing
+ * Copyright (C) 2011 Bastien Nocera <hadess@hadess.net>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+#include <gtk/gtk.h>
+#include <locale.h>
+
+static void
+test_one_accel (const char *accel,
+               const char *exp_label)
+{
+  guint accel_key;
+  GdkModifierType mods;
+  guint *keycodes;
+  char *label, *name;
+
+  gtk_accelerator_parse_with_keycode (accel,
+                                     &accel_key,
+                                     &keycodes,
+                                     &mods);
+
+  g_assert (accel_key != 0);
+  g_assert (keycodes);
+  g_assert (keycodes[0] != 0);
+
+  label = gtk_accelerator_get_label_with_keycode (NULL,
+                                                 accel_key,
+                                                 *keycodes,
+                                                 mods);
+
+  g_assert_cmpstr (label, ==, exp_label);
+
+  name = gtk_accelerator_name_with_keycode (NULL,
+                                           accel_key,
+                                           *keycodes,
+                                           mods);
+  g_assert_cmpstr (name, ==, accel);
+
+  g_free (keycodes);
+  g_free (label);
+  g_free (name);
+}
+
+static void
+accel (void)
+{
+  test_one_accel ("<Primary><Alt>z", "Ctrl+Alt+Z");
+}
+
+int
+main (int   argc,
+      char *argv[])
+{
+  setlocale (LC_ALL, "en_GB.UTF-8");
+
+  gtk_test_init (&argc, &argv);
+  g_test_add_func ("/accel", accel);
+  return g_test_run();
+}